home *** CD-ROM | disk | FTP | other *** search
/ Creative Computers / Creative Computers CD-ROM, Volume 1 (Legendary Design Technologies, Inc.)(1994).iso / shareware / graphics / flick_1.0 / source / smakefile < prev   
Makefile  |  1994-11-17  |  699b  |  21 lines

  1. SCFLAGS = optimize opttime nodebug parm=reg nostackcheck math=ieee \
  2.           stringmerge smallcode smalldata gst=t:includes.gst
  3.  
  4. #SCFLAGS = nooptimize debug=full parm=reg math=ieee \
  5. #          stringmerge smallcode smalldata
  6.  
  7. flick: flick.c t:includes.gst median.o c2p320x200.o c2p640x480.o
  8.     sc link $(SCFLAGS) flick.c median.o c2p320x200.o c2p640x480.o
  9.  
  10. median.o: median.c t:includes.gst
  11.     sc $(SCFLAGS) median.c
  12.  
  13. c2p320x200.o: adaptive.s smakefile
  14.     macro68 -D "width=320,height=200" adaptive.s -o c2p320x200.o
  15.  
  16. c2p640x480.o: adaptive.s smakefile
  17.     macro68 -D "width=640,height=480" adaptive.s -o c2p640x480.o
  18.  
  19. t:includes.gst: includes.h smakefile
  20.     sc $(SCFLAGS) makegst=t:includes.gst includes.h
  21.